home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <html><head><title>Month Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03030104"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css"> p.P1{ } p.P2{ } span.T1{ font-weight:bold;} </style></head><body> <help:to-be-embedded Eid="month" xmlns:help="http://openoffice.org/2000/help"> <p class="Head1"><help:link Id="66585">Month Function [Runtime]</help:link></p> <p class="Paragraph">Returns the month of the year from a serial date generated by DateSerial or DateValue.</p> </help:to-be-embedded> <p class="Paragraph"><span class="T1">Syntax</span>:</p> <p class="Paragraph">Month (Number) <help:key-word value="Month" tag="kw66585_1" xmlns:help="http://openoffice.org/2000/help"/></p> <p class="Paragraph"><span class="T1">Return value</span>:</p> <p class="Paragraph">Integer</p> <p class="Paragraph"><span class="T1">Parameter</span>:</p> <p class="Paragraph">Number: Numeric expression that contains the serial date number from which to determine the month of the year.</p> <p class="Paragraph">This function is the inverse function of <span class="T1">DateSerial</span>. It returns the month in a year of a correpsonding serial date generated by <span class="T1">DateSerial</span> or <span class="T1">DateValue</span>. Thus, the expression</p> <p class="Paragraph">Print Month(DateSerial(1994, 12, 20))</p> <p class="Paragraph">returns the value 12.</p> <p class="P2">Example:</p> <p class="PropText">Sub ExampleMonth</p> <p class="PropText">MsgBox "" & Month(Now) ,64,"The current month"</p> <p class="PropText">End sub</p> <p class="PropText"/> </body></html>